#!/usr/bin/env python3
r"""A fake `sudo` implementation that does not prompt for password and just executes the command.
"""
import subprocess
import sys

if __name__ == '__main__':
    exit(subprocess.call(sys.argv[1:]))
